home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000110_news@columbia.edu_Fri Dec 15 16:33:01 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11633
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Fri, 15 Dec 1995 11:33:22 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id LAA19462 for kermit.misc@watsun; Fri, 15 Dec 1995 11:33:10 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.unix.programmer,comp.protocols.kermit.misc,comp.protocols.misc,comp.unix.sco.misc
  7. Subject: Re: how to set "control quote character" in Ckermit?
  8. Date: 15 Dec 1995 16:33:01 GMT
  9. Organization: Columbia University
  10. Lines: 23
  11. Message-Id: <4as7vt$ivv@apakabar.cc.columbia.edu>
  12. References: <4aqri6$1am@news.jhu.edu>
  13. Nntp-Posting-Host: watsun.cc.columbia.edu
  14. Xref: news.columbia.edu comp.unix.programmer:37427 comp.protocols.kermit.misc:4308 comp.protocols.misc:5193 comp.unix.sco.misc:11987
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <4aqri6$1am@news.jhu.edu>,
  18. Yuehong Zheng <yuehong@psi.ece.jhu.edu> wrote:
  19. >And how to set "8th bit quote character " in Ckermit?
  20. >
  21. You only need to use 8th-bit quoting if you have a 7-bit
  22. connection.  The way you tell C-Kermit about this is:
  23.  
  24.   SET PARITY EVEN
  25.  
  26. (or SET PARITY SPACE, etc -- any parity value other than NONE).
  27. There is no command to choose what the 8th-bit prefix is.
  28. The character '&' is always used for this.
  29.  
  30. >How to set "maximum packet size" in Ckermit?
  31. >
  32. Tell the file receiver to SET RECEIVE PACKET-LENGTH <number>.
  33.  
  34. > I have looked at that book named 'Using Ckermit',
  35. > and can not find the answer.
  36. >
  37. Try Chapters 6 and 8.
  38.  
  39. - Frank